dangling anaphoric reference - vertaling naar Engels
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

dangling anaphoric reference - vertaling naar Engels

POINTER THAT DOES NOT POINT TO A VALID OBJECT
Dangling reference; Wild pointer; Dangling Reference; Dangling pointers; Wild reference; Use after free; Use-after-free; Use After Free
  • Dangling pointer

dangling anaphoric reference      
(n.) = referencia anafórica sin referente
Ex: The early workers concentrated on techniques for extracting informative sentences from documents, which resulted in abstracts which were highly disjointed, due especially to the presence of dangling anaphoric references.
anaphoric         
WIKIMEDIA DISAMBIGUATION PAGE
Anaphoric; Epanaphora; Anaphora (disambiguation)
(adj.) = anafórico
Ex: Testing of rules indicates high feasibility of future algorithmic recognition of anaphoric uses of terms.
----
* anaphoric reference = referencia anafórica
* anaphoric resolution = resolución anafórica
* dangle + anaphoric reference = dejar sin referente a una referencia anafórica
* dangling anaphoric reference = referencia anafórica sin referente
dangling         
WIKIMEDIA DISAMBIGUATION PAGE
Dangles; Dangling; Dangle (disambiguation)
----
* dangling anaphoric reference = referencia anafórica sin referente

Definitie

dangling pointer
<programming> A reference that doesn't actually lead anywhere. In C and some other languages, a pointer that doesn't actually point at anything valid. Usually this happens because it formerly pointed to something that has moved or disappeared, e.g. a heap-allocated block which has been freed and reused. Used as jargon in a generalisation of its technical meaning; for example, a local phone number for a person who has since moved is a dangling pointer. [Jargon File]

Wikipedia

Dangling pointer

Dangling pointers and wild pointers in computer programming are pointers that do not point to a valid object of the appropriate type. These are special cases of memory safety violations. More generally, dangling references and wild references are references that do not resolve to a valid destination.

Dangling pointers arise during object destruction, when an object that has an incoming reference is deleted or deallocated, without modifying the value of the pointer, so that the pointer still points to the memory location of the deallocated memory. The system may reallocate the previously freed memory, and if the program then dereferences the (now) dangling pointer, unpredictable behavior may result, as the memory may now contain completely different data. If the program writes to memory referenced by a dangling pointer, a silent corruption of unrelated data may result, leading to subtle bugs that can be extremely difficult to find. If the memory has been reallocated to another process, then attempting to dereference the dangling pointer can cause segmentation faults (UNIX, Linux) or general protection faults (Windows). If the program has sufficient privileges to allow it to overwrite the bookkeeping data used by the kernel's memory allocator, the corruption can cause system instabilities. In object-oriented languages with garbage collection, dangling references are prevented by only destroying objects that are unreachable, meaning they do not have any incoming pointers; this is ensured either by tracing or reference counting. However, a finalizer may create new references to an object, requiring object resurrection to prevent a dangling reference.

Wild pointers arise when a pointer is used prior to initialization to some known state, which is possible in some programming languages. They show the same erratic behavior as dangling pointers, though they are less likely to stay undetected because many compilers will raise a warning at compile time if declared variables are accessed before being initialized.